home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
sortc.arc
/
FPUTSS.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1987-06-12
|
239 b
|
16 lines
#include <stdio.h>
fputss(s, iop)
register char *s;
register FILE *iop;
/*
* Like fput() except that it puts a newline at the end of the line.
*/
{
register c;
while (c = *s++)
putc(c, iop);
putc('\n', iop);
}